home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Utils / GParted Live CD / Bin / gparted-livecd-0.2.2.iso / fake / needwrite / etc / profile.d / umask.sh < prev    next >
Encoding:
Text File  |  2006-01-27  |  131 b   |  7 lines

  1. # By default we want the umask to get set.
  2. if [ "$(id -gn)" = "$(id -un)" -a $EUID -gt 99 ] ; then
  3.   umask 002
  4. else
  5.   umask 022
  6. fi
  7.